home *** CD-ROM | disk | FTP | other *** search
/ CD School House 9 / CD School House 9.0 - Wayzata Technology (1994).iso / pc / dos / math / maplev / demo.hlp < prev    next >
Text File  |  1991-12-09  |  64KB  |  1,085 lines

  1. General\intro\Introduction to the Maple language and library
  2.     Index\index\Index of help descriptions
  3.     Datatypes\datatypes\Index of descriptions for Maple datatypes
  4.         *\*\An infix multiplication operator
  5.         +\+\An infix addition operator
  6.         .\.\An infix catenation operator used to form names
  7.         ..\..\An infix range operator
  8.         <\<\An infix inequality operator
  9.         <=\<=\Infix less than or equal to operator
  10.         <>\<>\Infix not equal to operator
  11.         =\=\Infix equality operator or infix equation generator
  12.         ^\^\Infix exponentiation operator
  13.         and\and\Infix logical and operator
  14.         exprseq\exprseq\Expression sequences - usually used to form lists, sets and function calls
  15.         float\float\Floating-point numbers and the Float function.
  16.         fraction\fraction\Fractions, type rational, and type numeric.
  17.         function\function\Functions.
  18.         indexed\indexed\Indexed name formed as <name>[ <indexing expressions> ]
  19.         integer\integer\Integers
  20.         list\list\Sets and lists
  21.         not\not\Unary logical negation operator
  22.         or\or\Infix logical or operator
  23.         procedure\procedure\Procedures.
  24.         series\series\Generalized series expansion
  25.         set\set\Sets and lists
  26.         string\string\Names and strings
  27.         table\table\Create a table
  28.         uneval\uneval\Unevaluated expression formed with ' (unevaluation) quotes
  29.     Expressions\expressions\Index of descriptions for Maple expressions.
  30.         !\!\The postfix factorial operator
  31.         "\"\An abbreviation for the last value computed by Maple.
  32.         ""\""\An abbreviation for the second last value computed by Maple.
  33.         """\"""\An abbreviation for the third last value computed by Maple.
  34.         $\$\Infix expression repetition operator
  35.         &\&\A neutral operator symbol. This used to indicate user defined infix operators
  36.         *\*\An infix mulitiplication operator
  37.         **\**\An infix exponentiation operator (equivalent to ^)
  38.         +\+\An infix addition operator or prefix identity operator
  39.         ,\,\Infix expression sequence operator
  40.         -\-\An infix subtraction operator or a prefix negation operator
  41.         .\.\An infix catenation operator used to form names.
  42.         ..\..\An infix range operator. It consists of two or more dots.
  43.         /\/\An infix division operator
  44.         <\<\An infix inequality operator
  45.         <=\<=\Infix less than or equal to operator
  46.         <>\<>\Infix not equal to operator
  47.         =\=\Infix equality operator or infix equation generator
  48.         >\>\Infix greater than operator
  49.         >=\>=\Infix greater than or equal to operator
  50.         @\@\Infix composition operator
  51.         @@\@@\Infix repeated composition operator
  52.         ^\^\Infix exponentiation operator
  53.         algebraic\algebraic\Expressions formed using standard algebraic operations
  54.         and\and\Infix logical and operator
  55.         arithop\arithop\General arithmetic operations
  56.         arrays\arrays\Define an n-dimensional array (table indexed by numeric values)
  57.         boolean\boolean\Expressions which evaluates to true or false
  58.         concat\concat\Concatenation or dot operator
  59.         constants\constants\False, gamma, infinity, true, Catalan, E, I, Pi
  60.         ditto\ditto\The previous expression can be referenced by using the double quote (") symbol as a name.
  61.         equations\equations\The mathematical relation of equality.
  62.         expression\expression\A mathematical expression
  63.         exprseq\exprseq\An expression sequence. These are usually used to form lists, sets and function calls
  64.         functions\functions\Evaluated or unevaluated function applications
  65.         indexed\indexed\Indexed name formed as <name>[ <indexing expressions> ]
  66.         inequalities\inequalities\A mathematical relation.
  67.         Intersect\Intersect\Set intersection operator
  68.         lists\lists\Ordered collection of values formed by using enclosing list brackets "[" and "]"
  69.         minus\minus\Infix set difference operator
  70.         mod\mod\Computation over the integers modulo "m"
  71.         names \names \Expressions that behave like names. Also see strings.
  72.         neutral\neutral\User defined infix operators, generally non-commutative
  73.         not\not\Unary logical negation operator
  74.         operators\operators\A general description of the kind of operations available.
  75.         or\or\Infix logical or operator
  76.         precedence\precedence\Precedence of Maple operators
  77.         procedures\procedures\User defined procedures written using the Maple language
  78.         quotes\quotes\String quotes (`), previous expression ("), or leave unevaluated (')
  79.         ranges\ranges\Expression ranges
  80.         selection\selection\Selection operator used to extract a component from an aggregate object
  81.         series\series\Generalized series expansion
  82.         sets\sets\An unordered collection of values formed by using set braces "{" and "}"
  83.         strings\strings\Maple names formed with ` (string) quotes
  84.         tables\tables\Table data structures indexed either by numeric values or by arbitrary values
  85.         uneval\uneval\Unevaluated expression formed with ' (unevaluation) quotes
  86.         union\union\Infix set union operator
  87.     Procedures\procedures\User defined procedures written using the Maple language
  88.     Statements\statements\Index of descriptions for Maple statements.
  89.         assignment\assignment\Associate a name with a Maple expression.
  90.         break\break\Break out of a repetition (for/while/do) statement
  91.         by\by\Indicate the step size in a do statement
  92.         do\do\Repeat statement(s) with iterations controlled by optional for, while, and in clauses
  93.         done\done\Terminate a Maple session
  94.         elif\elif\Continuation of a Conditional statement
  95.         else\else\The final clause of a Conditional statement
  96.         empty\empty\Empty statement
  97.         ERROR\ERROR\Error return from a procedure
  98.         fi\fi\The terminator of an if statement
  99.         for\for\Repeat a block of statements
  100.         from\from\Indicate the starting point in a for clause
  101.         if\if\Conditional statement with optional elif and else clauses
  102.         next\next\Continue with next iteration of a repetition (for/while/do) statement
  103.         od\od\The terminating expression of a do statement.
  104.         quit\quit\Terminate Maple session. "Stop" and "done" are synonyms
  105.         read\read\Read Maple statements from a file or loads values from a binary Maple file
  106.         RETURN\RETURN\Explicit return from a procedure
  107.         save\save\Save selected or all assigned variables along with their values to a file
  108.         while\while\Conditional loop
  109.     Tables\tables\Table data structures indexed either by numeric values or by arbitrary values
  110. Library\library\Commonly used Maple library functions and procedures
  111.     $\$\Infix expression repetition operator
  112.     @\@\Infix composition operator
  113.     @@\@@\Infix repeated composition operator
  114.     abs\abs\Absolute value of real or complex argument
  115.     addressof\addressof\Obtain the address which points to an expression
  116.     alias\alias\Define an abbreviation or denotation
  117.     allvalues\allvalues\Evaluate all possible values of expressions involving RootOf's
  118.     anames\anames\Sequence of assigned names
  119.     appendto\appendto\Write output to a file in append mode
  120.     arccos\arccos\Inverse trigonometric cosine function
  121.     arccosh\arccosh\Inverse hyperbolic cosine function
  122.     arccot\arccot\Inverse trigonometric cotangent function
  123.     arccoth\arccoth\Inverse hyperbolic cotangent function
  124.     arccsc\arccsc\Inverse trigonometric cosecant function
  125.     arccsch\arccsch\Inverse hyperbolic cosecant function
  126.     arcsec\arcsec\Inverse trigonometric secant function
  127.     arcsech\arcsech\Inverse hyperbolic secant function
  128.     arcsin\arcsin\Inverse trigonometric sine function
  129.     arcsinh\arcsinh\Inverse hyperbolic sine function
  130.     arctan\arctan\Inverse trigonometric tangent function
  131.     arctanh\arctanh\Inverse hyperbolic tangent function
  132.     array\array\Create an array
  133.     assemble\assemble\Assemble a sequence of addresses into an object
  134.     assign\assign\Perform assignments
  135.     assigned\assigned\Check if a name is assigned
  136.     asympt\asympt\Asymptotic expansion
  137.     bernoulli\bernoulli\Bernoulli numbers and polynomials
  138.     BesselI\BesselI\Modified Bessel function of the first kind I(v,x)
  139.     BesselJ\BesselJ\Bessel function of the first kind J(v,x)
  140.     BesselK\BesselK\Modified Bessel function of the second kind K(v,x)
  141.     BesselY\BesselY\Bessel function of the second kind Y(v,x)
  142.     Beta\Beta\Beta function: Beta(x,y) = GAMMA(x)*GAMMA(y)/GAMMA(x+y)
  143.     binomial\binomial\Binomial coefficients
  144.     cat\cat\Concatenating expressions
  145.     chebyshev\chebyshev\Chebyshev series expansion
  146.     chrem\chrem\Chinese Remainder Algorithm
  147.     Ci\Ci\Cosine integral = gamma + ln(x) + int( (cos(t) 1)/t, t=0..x)
  148.     coeff\coeff\Extract a coefficient of a polynomial
  149.     coeffs\coeffs\Extract all coefficients of a multivariate polynomial
  150.     collect\collect\Collect coefficients of like powers
  151.     combine\combine\Combine terms into a single term
  152.         exp\combine,exp\Combine exponentials
  153.         ln\combine,ln\Combine logarithmic terms
  154.         power\combine,power\Combine terms with powers
  155.         Psi\combine,Psi\Combine Psi functions
  156.         trig\combine,trig\Combine trigonometric terms
  157.     compoly\compoly\Determine a possible composition of a polynomial
  158.     content\content\Content of a multivariate polynomial
  159.     Content\Content\Inert content function
  160.     convert\convert\Convert an expression to a different form
  161.         +\convert,+\Convert to sum
  162.         *\convert,*\Convert to product
  163.         array\convert,array\Convert to array
  164.         base\convert,base\Convert between bases
  165.         binary\convert,binary\Convert to binary form
  166.         confrac\convert,confrac\Convert to continued-fraction form
  167.         D\convert,D\Convert expressions involving derivatives to use the D operator
  168.         decimal\convert,decimal\Convert to base 10
  169.         degrees\convert,degrees\Convert radians to degrees
  170.         diff\convert,diff\Convert an expression of the form D(f)(x) to diff(f(x),x)
  171.         double\convert,double\Convert a double precision floating point number from one format to another
  172.         eqnlist\convert,eqnlist\Convert to a list of equations
  173.         equality\convert,equality\Convert relations to equalities
  174.         GAMMA\convert,GAMMA\Convert factorials and binomials to GAMMAs
  175.         lessthan\convert,lessthan\Converts relations to `<` form
  176.         lessequal\convert,lessequal\Converts relations to `<=` form
  177.         exp\convert,exp\Convert trig functions to exponentials
  178.         expln\convert,expln\Convert elementary functions to exp and ln
  179.         expsincos\convert,expsincos\Convert trig functions to exp, sin, cos
  180.         factorial\convert,factorial\Convert GAMMAs and binomials to factorials
  181.         float\convert,float\Convert to floating-point
  182.         hex\convert,hex\Convert to hexadecimal form
  183.         horner\convert,horner\Convert a polynomial to Horner form
  184.         hostfile\convert,hostfile\Convert Maple filename to host filename
  185.         hypergeom\convert,hypergeom\Convert summations to hypergeometrics
  186.         list\convert,list\Convert to a list
  187.         listlist\convert,listlist\Convert to a list of lists
  188.         ln\convert,ln\Convert arctrig functions to logarithms
  189.         mathorner\convert,mathorner\Convert a polynomial to matrix Horner form
  190.         matrix\convert,matrix\Convert an array or a list of lists to a matrix
  191.         metric\convert,metric\Convert to metric units
  192.         mod2\convert,mod2\Convert expression to mod 2 form
  193.         multiset\convert,multiset\Convert to a multiset
  194.         string\convert,string\Convert an expression to a string (name)
  195.         name\convert,name\A synonym for convert,string
  196.         octal\convert,octal\Convert to octal form
  197.         parfrac\convert,parfrac\Convert to partial fraction form
  198.         polar\convert,polar\Convert to polar form
  199.         polynom\convert,polynom\Convert a series to polynomial form
  200.         radians\convert,radians\Convert degrees to radians
  201.         radical\convert,radical\Convert RootOf to radicals and I
  202.         rational\convert,rational\Convert float to an approximate rational
  203.         ratpoly\convert,ratpoly\Convert series to a rational polynomial
  204.         RootOf\convert,RootOf\Convert radicals and I to RootOf notation
  205.         series\convert,series\Convert to series
  206.         set\convert,set\Convert to a set
  207.         sincos\convert,sincos\Convert trig functions to sin, cos, sinh, cosh
  208.         sqrfree\convert,sqrfree\Convert to square-free form
  209.         tan\convert,tan\Convert trig function to tan
  210.         trig\convert,trig\Convert all exponentials to trigonometric and hyperbolic trigonometric functions
  211.         vector\convert,vector\Convert a list or an array to a Maple vector
  212.     copy\copy\Create a duplicate array or table
  213.     cos\cos\Trigonometric cosine function
  214.     cosh\cosh\Hyperbolic cosine function
  215.     cot\cot\Trigonometric cotangent function
  216.     coth\coth\Hyperbolic cotangent function
  217.     csc\csc\Trigonometric cosecant function
  218.     csch\csch\Hyperbolic cosecant function
  219.     D\D\Differential operator
  220.     define\define\Define characteristics of an operator name
  221.         forall\define,forall\Define a property for an operator
  222.         group \define,group\Define characteristics of a group operator
  223.         linear\define,linear\Define characteristics of a linear operator
  224.         operator\define,operator\Define an operator by a list of properties
  225.     degree\degree\Degree of a polynomial
  226.     denom\denom\Denominator of an expression
  227.     Det\Det\Inert determinant
  228.     Diff\Diff\Partial differentiation
  229.     diff\diff\Partial differentiation
  230.     dilog\dilog\Dilogarithm integral = int( ln(t)/(1-t), t=1..x )
  231.     disassemble\disassemble\Break an object into its component addresses.
  232.     discrim\discrim\Discriminant of a polynomial
  233.     DistDeg\DistDeg\Distinct degree factorization
  234.     divide\divide\Exact polynomial division
  235.     Divide\Divide\Inert divide function
  236.     dsolve\dsolve\Solve ordinary differential equations
  237.     dsolve/numeric\dsolve,numeric\Numeric solution of ordinary differential equations
  238.     Ei\Ei\Exponential integral = int( exp(t)/t, t= -infinity..x )
  239.     Eigenvals\Eigenvals\Compute the eigenvalues/vectors of a numeric matrix
  240.     entries\entries\Entries of a table or array
  241.     eqn\eqn\Produce output suitable for troff/eqn printing
  242.     erf\erf\Error function = 2/sqrt(Pi) * int( exp(-t^2), t=0..x )
  243.     ERROR\ERROR\Error return from a procedure
  244.     euler\euler\Euler numbers and polynomials
  245.     Eval\Eval\Evaluate a polynomial
  246.     eval\eval\Explicit evaluation
  247.     evala\evala\Evaluate in an algebraic number field
  248.     evalb\evalb\Evaluate as a boolean expression
  249.     evalc\evalc\Evaluate in the complex number field
  250.     evalc/polar\evalc,polar\Evaluate in the complex number field in polar form
  251.     evalf\evalf\Evaluate using floating-point arithmetic
  252.     evalf/hypergeom\evalf,hypergeom\Evaluate generalized hypergeometric function
  253.     evalhf\evalhf\Evaluate an expression using hardware floating-point
  254.         array\evalhf,array\Handling of arrays
  255.         boolean\evalhf,boolean\Boolean expressions
  256.         constant\evalhf,constant\Constants known to evalhf
  257.         fcnlist\evalhf,fcnlist\List of functions handled
  258.         fortran\evalhf,fortran\Evalhf's relation to Fortran
  259.         function\evalhf,function\Handling of Maple functions
  260.         var\evalhf,var\Passing arrays by value,result; var(name)
  261.     evalm\evalm\Evaluate over the matrices
  262.     evaln\evaln\Evaluate to a name
  263.     example\example\Produce an example of a function or type
  264.     exp\exp\The exponential function: exp(x) = sum(x^i/i!,i=0..infinity)
  265.     expand\expand\Expand an expression
  266.     Expand\Expand\Inert expand function
  267.     factor\factor\Factor a multivariate polynomial
  268.     Factor\Factor\Inert factor function
  269.     factorial\factorial\The factorial function factorial(n) = n!
  270.     Factors\Factors\Inert factors function
  271.     fnormal\fnormal\Floating-point normalization
  272.     fortran\fortran\Generate Fortran code
  273.     frac\frac\Fractional part of a number
  274.     FresnelC\FresnelC\Fresnel cosine integral = int( cos(Pi/2*t^2), t = 0..x )
  275.     FresnelS\FresnelS\Fresnel sine integral = int( sin(Pi/2*t^2), t = 0..x )
  276.     frontend\frontend\Process general expression into a rational expression
  277.     fsolve\fsolve\Solve using floating-point arithmetic
  278.     galois\galois\Compute the Galois group of an irreducible polynomial
  279.     GAMMA\GAMMA\The gamma function GAMMA(z) = int( exp(-t)*t^(z-1), t=0..infinity ) and the incomplete Gamma function GAMMA(a,x) = int( exp(-t)*t^(a-1), t=x..infinity )
  280.     gc\gc\Garbage collection
  281.     gcd\gcd\Greatest common divisor of polynomials
  282.     Gcd\Gcd\Inert gcd function
  283.     gcdex\gcdex\Extended Euclidean algorithm for polynomials
  284.     Gcdex\Gcdex\Inert gcdex function
  285.     genpoly\genpoly\Generate polynomial from integer n by Z-adic expansion
  286.     has\has\Test for a specified subexpression
  287.     hastype\hastype\Test for a specified type
  288.     help\help\Descriptions of syntax, datatypes, and functions
  289.     Hermite\Hermite\Compute the Hermite normal form of a matrix mod p
  290.     icontent\icontent\Integer content of a polynomial
  291.     if\if\Conditional statement with optional elif and else clauses
  292.     ifactor\ifactor\Integer factorization
  293.     igcd\igcd\Greatest common divisor of integers
  294.     igcdex\igcdex\Extended Euclidean algorithm for integers
  295.     ilcm\ilcm\Least common multiple of integers
  296.     indets\indets\Find indeterminates of an expression
  297.     indices\indices\Indices of a table or array
  298.     Int\Int\Definite and indefinite integration
  299.     int\int\Definite and indefinite integration
  300.     int/series\int,series\Integration of a series structure
  301.     interface\interface\Set or query user interface variables
  302.     Interp\Interp\Inert interp function
  303.     interp\interp\Polynomial interpolation
  304.     intersect\intersect\Set intersection operator
  305.     iquo\iquo\Integer quotient
  306.     irem\irem\Integer remainder
  307.     Irreduc\Irreduc\Inert irreducibility function
  308.     irreduc\irreduc\Polynomial irreducibility test
  309.     isolve\isolve\Solve equations for integer solutions
  310.     isprime\isprime\Primality test
  311.     isqrt\isqrt\Integer square root
  312.     ithprime\ithprime\Determine the i'th prime
  313.     laplace\laplace\Laplace transform
  314.     latex\latex\Produce output suitable for latex printing
  315.         functions\latex,functions\How latex formats functions
  316.         names\latex,names\How latex formats names
  317.     lcm\lcm\Least common multiple of polynomials
  318.     lcoeff\lcoeff\Leading coefficient of a multivariate polynomial
  319.     ldegree\ldegree\Low degree of a polynomial
  320.     leadterm\leadterm\Find the leading term of a series expansion
  321.     length\length\Length of an object
  322.     lexorder\lexorder\Test for lexicographical order
  323.     lhs\lhs\Left hand side of an expression
  324.     limit\limit\Calculate limits
  325.         dir\limit,dir\Directional limits
  326.         multi\limit,multi\Multidirectional limits
  327.         return\limit,return\Values returned by limit
  328.     Limit \Limit\Inert form of limit
  329.     ln\ln\Natural logarithm (logarithm with base E = 2.71828...)
  330.     log\log\Initially assigned the name ln. Typically, the user assigns to this a function that computes logarithms to some other base.
  331.     lprint\lprint\Linear printing of expression
  332.     macro\macro\Define an macro abbreviation
  333.     map\map\Apply a procedure to each operand of an expression
  334.     match\match\Pattern matching
  335.     max\max\Maximum of numbers
  336.     maxnorm\maxnorm\Infinity norm of a polynomial
  337.     MeijerG\MeijerG\Special case of the general Meijer G function
  338.     mellin\mellin\Mellin transform
  339.     member\member\Test for membership in a set or list
  340.     min\min\Minimum of numbers
  341.     minus\minus\Infix set difference operator
  342.     modp\modp\Computation over the integers modulo "m"
  343.     modp1\modp1\Univariate polynomial arithmetic modulo n
  344.     mods\mods\Computation over the integers modulo "m"
  345.     msolve\msolve\Solve equations in Z mod m
  346.     nextprime\nextprime\Determine the next largest prime
  347.     nops\nops\The number of operands of an expression
  348.     norm\norm\Norm of a polynomial
  349.     Normal\Normal\Inert normal function
  350.     normal\normal\Normalize a rational expression
  351.     Nullspace\Nullspace\Compute the nullspace of a matrix mod p
  352.     numer\numer\Numerator of an expression
  353.     op\op\Extract operands from an expression
  354.     order\order\Determine the truncation order of a series
  355.     plot\plot\Create a 2-dimensional plot of functions
  356.     plot3d\plot3d\Three-dimensional plotting
  357.     plotsetup\plotsetup\Set up appropriate parameters for plotting
  358.     pointto\pointto\Obtain the expression pointed to by an address
  359.     Power\Power\Inert power function
  360.     Powmod\Powmod\Inert power function with remainder
  361.     Prem\Prem\Inert prem function
  362.     prem\prem\Pseudo-remainder of polynomials
  363.     prevprime\prevprime\Determine the next smallest prime
  364.     Primitive\Primitive\Test whether a polynomial is primitive mod p
  365.     Primpart\Primpart\Inert primitive part function.
  366.     primpart\primpart\Primitive part of a multivariate polynomial
  367.     print\print\Pretty-printing of expressions
  368.     product\product\Definite and indefinite product
  369.     Product\Product\Inert form of product.
  370.     Psi\Psi\Polygamma function Psi(x) = diff( ln(GAMMA(x)), x ) and its derivatives Psi(n,x) = diff(Psi(x),x$n)
  371.     Quo\Quo\Inert quo function.
  372.     quo\quo\Quotient of polynomials
  373.     radsimp\radsimp\Simplification of an expression containing radicals
  374.     rand\rand\Random number generator
  375.     randpoly\randpoly\Random polynomial generator
  376.     Randpoly\Randpoly\Random polynomial over a finite field
  377.     readlib\readlib\Read a library file to define a specified name
  378.     readstat\readstat\Read one statement from the input stream
  379.     Rem\Rem\Inert rem function
  380.     rem\rem\Remainder of polynomials
  381.     resultant\resultant\Compute the resultant of two polynomials
  382.     Resultant\Resultant\Inert resultant function
  383.     RETURN\RETURN\Explicit return from a procedure
  384.     rhs\rhs\Right hand side of an expression
  385.     RootOf\RootOf\A representation for roots of equations
  386.     Roots\Roots\Roots of a polynomial mod n
  387.     roots\roots\Roots of a univariate polynomial
  388.     round\round\Round a number to an integer
  389.     rsolve\rsolve\Recurrence equation solver
  390.     sec\sec\Trigonometric secant function
  391.     sech\sech\Hyperbolic secant function
  392.     select\select\Selection from a list, set, sum, or product
  393.     seq\seq\Create a sequence
  394.     series\series\Generalized series expansion
  395.     series/leadterm\series,leadterm\Find the leading term of a series expansion
  396.     Si\Si\Sine integral = int( sin(t)/t, t=0..x )
  397.     sign\sign\Sign of a number or a polynomial
  398.     signum\signum\Sign function for real and complex expressions
  399.     simplify\simplify\Apply simplification rules to an expression
  400.         atsign\simplify,atsign\Simplify expressions involving operators
  401.         GAMMA\simplify,GAMMA\Simplifications involving the GAMMA function
  402.         hypergeom\simplify,hypergeom\Simplify hypergeometric expressions
  403.         power\simplify,power\Simplify powers
  404.         radical\simplify,radical\Simplify expressions with radicals
  405.         RootOf\simplify,RootOf\Simplify expressions with the RootOf function
  406.         siderels\simplify,siderels\Simplify with respect to side relations
  407.         sqrt\simplify,sqrt\Simplify square roots
  408.         trig\simplify,trig\Simplify trigonometric expressions
  409.     sin\sin\Trigonometric sine function
  410.     sinh\sinh\Hyperbolic sine function
  411.     Smith\Smith\Compute the Smith normal form of a matrix mod p
  412.     solve\solve\Solve equations
  413.         floats\solve,floats\Expressions involving floating-point numbers
  414.         functions\solve,functions\For a variable which is used as a function name
  415.         identity\solve,identity\Expressions involving identities
  416.         ineqs\solve,ineqs\Inequalities
  417.         linear\solve,linear\Systems of linear equations
  418.         radical\solve,radical\Expressions involving radicals of unknowns
  419.         scalar\solve,scalar\Scalar case (a single variable and equation)
  420.         series\solve,series\Expressions involving general series
  421.         system\solve,system\Systems of equations, multiple equations or unknowns
  422.     sort\sort\Sort a list of values or a polynomial
  423.     Sprem\Sprem\Inert sprem function
  424.     sprem\sprem\Sparse pseudo-remainder of polynomials
  425.     Sqrfree\Sqrfree\Inert square free factorization function
  426.     sqrt\sqrt\Square root
  427.     subs\subs\Substitute subexpressions into an expression
  428.     subsop\subsop\Substitute for specified operands in an expression
  429.     substring\substring\Extract a substring from a string
  430.     sum\sum\Definite and indefinite summation
  431.     Sum\Sum\Inert form of summation
  432.     Svd\Svd\Compute the singular values/vectors of a numeric matrix
  433.     system\system\Invoke a command in the host operating system
  434.     table\table\Create a table
  435.     tan\tan\Trigonometric tangent function
  436.     tanh\tanh\Hyperbolic tangent function
  437.     taylor\taylor\Taylor series expansion
  438.     tcoeff\tcoeff\Trailing coefficient of a multivariate polynomial
  439.     testeq\testeq\Random polynomial-time equivalence tester
  440.     time\time\Total CPU time used for the session
  441.     trace\trace\Trace procedures in order to debug them
  442.     traperror\traperror\Trap an error condition
  443.     trunc\trunc\Truncate a number to an integer
  444.     type\type\Type-checking function
  445.         .\type,.\Check for an expression of type `.`
  446.         algebraic\type,algebraic\Check for an algebraic expression
  447.         algext\type,algext\Check for an algebraic extension
  448.         algfun\type,algfun\Check for an algebraic function
  449.         algnum\type,algnum\Check for an algebraic number
  450.         algnumext\type,algnumext\Check for an algebraic number extension
  451.         anything\type,anything\Check for any type
  452.         array\type,array\Check for an array
  453.         boolean\type,boolean\Check for type Boolean
  454.         constant\type,constant\Check for a constant
  455.         cubic\type,cubic\Check for cubic functions
  456.         even\type,even\Check for an even integer
  457.         evenfunc\type,evenfunc\Check for an even function
  458.         expanded\type,expanded\Check for an expanded polynomial
  459.         facint\type,facint\Test for factored integer form
  460.         float\type,float\Check for an object of type float
  461.         fraction\type,fraction\Check for an object of type fraction
  462.         integer\type,integer\Check for an integer
  463.         laurent\type,laurent\Check for Laurent series
  464.         linear\type,linear\Check for linear functions
  465.         list\type,list\Check for a list
  466.         listlist\type,listlist\Check for a list of lists
  467.         logical\type,logical\Check for type logical
  468.         mathfunc\type,mathfunc\Check for mathematical functions
  469.         matrix\type,matrix\Check for a matrix
  470.         monomial\type,monomial\Check for a monomial
  471.         negative\type,negative\Check for a negative number
  472.         negint\type,negint\Check for a negative integer
  473.         nonneg\type,nonneg\Check for a non-negative number
  474.         nonnegint\type,nonnegint\Check for a non-negative integer
  475.         numeric\type,numeric\Check for an object of type numeric
  476.         odd\type,odd\Check for an odd integer
  477.         oddfunc\type,oddfunc\Check for an odd function
  478.         operator\type,operator\Check for a functional operator
  479.         PLOT\type,PLOT\Check for a PLOT data structure
  480.         PLOT3D\type,PLOT3D\Check for a PLOT3D data structure
  481.         point\type,point\Check for a point
  482.         polynom\type,polynom\Check for a polynomial
  483.         posint\type,posint\Check for a positive integer
  484.         positive\type,positive\Check for a positive number
  485.         primeint\type,primeint\Check for a prime integer
  486.         quadratic\type,quadratic\Check for quadratic functions
  487.         quartic\type,quartic\Check for quartic functions
  488.         radext\type,radext\Check for an algebraic extension in terms of radicals
  489.         radfun\type,radfun\Check for a radical function
  490.         radfunext\type,radfunext\Check for a radical function extension
  491.         radical\type,radical\Check for fractional powers
  492.         radnum\type,radnum\Check for an algebraic number in terms of radicals
  493.         radnumext\type,radnumext\Check for a radical number extension
  494.         range\type,range\Check for a range
  495.         rational\type,rational\Check for an object of type rational
  496.         ratpoly\type,ratpoly\Check for a rational polynomial
  497.         realcons\type,realcons\Check for a real constant
  498.         relation\type,relation\Check for type relation
  499.         scalar\type,scalar\Check for scalar (in the matrix sense)
  500.         set\type,set\Check for a set
  501.         sqrt\type,sqrt\Check for a square root
  502.         square\type,square\Check for a perfect square
  503.         taylor\type,taylor\Check for Taylor series
  504.         trig\type,trig\Check for trigonometric functions
  505.         type\type,type\Check for type expressions
  506.         vector\type,vector\Check for vector (one-dimensional array)
  507.     unames\unames\Sequence of unassigned names
  508.     unapply\unapply\Returns an operator from an expression and arguments
  509.     union\union\Infix set union operator
  510.     userinfo\userinfo\Print useful information to the user
  511.     whattype\whattype\Query the basic data type of an expression
  512.     with\with\Define the names of functions from a library package
  513.     words\words\Query memory usage (words used)
  514.     writeto\writeto\Write output to a file
  515.     Zeta\Zeta\Riemann zeta function Zeta(s) = sum(1/i^s,i=1..infinity), its derivatives Zeta(n,s) = diff(Zeta(s),s$n), and with 3 arguments Zeta(n,s,q) = diff(Zeta(0,s,q),s$n) where Zeta(0,s,q) = sum(1/(i+q)^s,i=1..infinity)
  516.     zip\zip\Zip together two lists or vectors
  517.     ztrans\ztrans\Z transform
  518. Miscellaneous\libmisc\Miscellaneous Maple library procedures
  519.     atatsign\atatsign\The repeated composition operator
  520.     atsign\atsign\The composition operator
  521.     bernstein\bernstein\Bernstein polynomial approximating a function
  522.     bianchi\bianchi\Find the Bianchi type of any 3-dimensional Lie algebra
  523.     bspline\bspline\Compute the B-spline segment polynomials
  524.     C\C\Generate C code
  525.     cartan\cartan\Compute connection and curvature using Cartan's structure equations
  526.     coeftayl\coeftayl\Coefficient of (multivariate) expression
  527.     commutat\commutat\Commutator routines
  528.     convergs\convergs\Print convergents of continued fraction
  529.     cost\cost\Operation evaluation count
  530.     debever\debever\Newman-Penrose spin and curvature using Debever's formalism
  531.     dinterp\dinterp\Probabilistic degree interpolation
  532.     Dirac\Dirac\The Dirac delta function
  533.     edit\edit\Expression editor
  534.     ellipsoid\ellipsoid\Surface area of an ellipsoid
  535.     erfc\erfc\Complementary error function = 1-erf(x)
  536.     eulermac\eulermac\Euler-Maclaurin summation
  537.     evalgf\evalgf\Evaluate in an algebraic extension of a finite field
  538.     evalr\evalr\Evaluate an expression using range arithmetic
  539.     extrema\extrema\Find relative extrema of an expression
  540.     factors\factors\Factor a multivariate polynomial
  541.     FFT\FFT\Fast Fourier transform
  542.     finance\finance\Amount, interest, payment, or periods
  543.     fixdiv\fixdiv\Compute the fixed divisor of a polynomial
  544.     forget\forget\Remove an entry or entries from a remember table
  545.     freeze\freeze\Replace an expression by a name
  546.     Functions\Functions\Maple functions
  547.     GF\GF\Galois Field Package
  548.     heap\heap\Priority Queue Data Structure
  549.     Heaviside\Heaviside\The Heaviside step function
  550.     history\history\Maintain a history of all values computed
  551.     hypergeom\hypergeom\Generalized hypergeometric function
  552.     ifactors\ifactors\Integer factorization
  553.     invlaplace\invlaplace\Inverse Laplace transform
  554.     invztrans\invztrans\Inverse Z transform
  555.     iratrecon\iratrecon\Rational reconstruction
  556.     iroot\iroot\Integer n-th root
  557.     iscont\iscont\Test continuity on an interval
  558.     isolate\isolate\Isolate a subexpression to left-side of an equation
  559.     isqrfree\isqrfree\Integer square free factorization
  560.     issqr\issqr\Test if an integer is a perfect square
  561.     lattice\lattice\Find a reduced basis of a lattice
  562.     minimize\minimize\Compute the minimum
  563.     minpoly\minpoly\Find minimum polynomial with an approximate root
  564.     modpol\modpol\Expression evaluation in a quotient field
  565.     MOLS\MOLS\Mutually orthogonal Latin squares
  566.     mtaylor\mtaylor\Multivariate Taylor series expansion
  567.     oframe\oframe\Orthonormal tetrads in the Ellis-MacCallum formalism
  568.     optimize\optimize\Common subexpression optimization
  569.     petrov\petrov\Finds the Petrov classification of the Weyl tensor
  570.     poisson\poisson\Poisson series expansion
  571.     priqueue\priqueue\Priority Queue Functions
  572.     procbody\procbody\Create a ``neutralized form'' of a procedure
  573.     procmake\procmake\Create a Maple procedure
  574.     profile\profile\Space & time profile of a proc
  575.     proot\proot\N-th root of a polynomial
  576.     psqrt\psqrt\Square root of a polynomial
  577.     realroot\realroot\Isolating intervals for real roots of a polynomial
  578.     recipoly\recipoly\Determine whether a polynomial is self-reciprocal
  579.     residue\residue\Compute the algebraic residue of an expression
  580.     search\search\Substring search
  581.     shake\shake\Compute a bounding interval
  582.     showtime\showtime\Display time and space statistics for commands
  583.     singular\singular\Find singularities of an expression
  584.     sinterp\sinterp\Sparse multivariate modular polynomial interpolation
  585.     sqrfree\sqrfree\Convert to square-free form
  586.     sturm\sturm\Number of real roots of a polynomial in an interval
  587.     tensor\tensor\Compute curvature tensors in a coordinate basis
  588.     thiele\thiele\Thiele's continued fraction interpolation formula
  589.     translate\translate\Linear translation of a polynomial
  590.     trigsubs\trigsubs\Handling trigonometric identities
  591.     unassign\unassign\Unassign names
  592.     W\W\The function satisfying W(x) * exp(W(x)) = x
  593.     write\write\Buffered output
  594. Packages\packages\Index of descriptions for packages of library functions
  595.     combinat\combinat\Introduction to the "combinat" package
  596.         bell\combinat,bell\Compute Bell numbers
  597.         binomial\combinat,binomial\Binomial coefficients
  598.         cartprod\combinat,cartprod\Iterate over a list of lists
  599.         character\combinat,character\Compute character table for a symmetric group
  600.         Chi\combinat,Chi\Compute Chi function for partitions of a symmetry group
  601.         combine\combinat,combine\Construct the combinations of a list
  602.         composition\combinat,composition\K-compositions of an integer
  603.         decodepart\combinat,decodepart\Compute canonical partition represented by integer
  604.         encodepart\combinat,encodepart\Compute canonical integer representing partition
  605.         fibonacci\combinat,fibonacci\Compute Fibonacci numbers or polynomials
  606.         firstpart\combinat,firstpart\First partition in canonical partition sequence
  607.         inttovec\combinat,inttovec\Vector referenced by integer in canonical ordering
  608.         lastpart\combinat,lastpart\Last partition in canonical partition sequence
  609.         multinomial\combinat,multinomial\Compute the multinomial coefficients
  610.         nextpart\combinat,nextpart\Next partition in canonical partition sequence
  611.         numbcomb\combinat,numbcomb\Count the number of combinations
  612.         numbcomp\combinat,numbcomp\The number of k-compositions of an integer
  613.         numbpart\combinat,numbpart\The number of partitions of an integer
  614.         numbperm\combinat,numbperm\Count the number of permutations
  615.         partition\combinat,partition\Partition an integer
  616.         permute\combinat,permute\Construct the permutations of a list
  617.         powerset\combinat,powerset\Construct the power set of a set
  618.         prevpart\combinat,prevpart\Previous partition in canonical partition sequence
  619.         randcomb\combinat,randcomb\Construct a random combination
  620.         randpart\combinat,randpart\Construct a random partition
  621.         randperm\combinat,randperm\Construct a random permutation
  622.         stirling1\combinat,stirling1\Stirling numbers of the first kind
  623.         stirling2\combinat,stirling2\Stirling numbers of the second kind
  624.         subsets\combinat,subsets\Iterate over the power set of a set or list
  625.         vectoint\combinat,vectoint\Index of vector in canonical ordering
  626.     difforms\difforms\Introduction to the "difforms" package
  627.         &^\difforms,&^\Wedge product of differential forms
  628.         d\difforms,d\Exterior differentiation
  629.         defform\difforms,defform\Define a constant, scalar, or form
  630.         formpart\difforms,formpart\Find part of an expression which is a form
  631.         mixpar\difforms,mixpar\Ensure equality of mixed partial derivatives
  632.         parity\difforms,parity\Extension of mod 2
  633.         scalarpart\difforms,scalarpart\Find part of an expression which is a scalar
  634.         simpform\difforms,simpform\Simplify an expression involving forms
  635.         wdegree\difforms,wdegree\Degree of a form
  636.     geom3d\geom3d\Introduction to the "geom3d" package
  637.         angle\geom3d,angle\Find angle between two lines, two planes, or a line and plane
  638.         area\geom3d,area\Compute the area of a triangle or the surface of a sphere
  639.         are_collinear\geom3d,are_collinear\Test if three points are collinear
  640.         are_concurrent\geom3d,are_concurrent\Test if three lines are concurrent
  641.         are_parallel\geom3d,are_parallel\Test if lines or planes are parallel
  642.         are_perpendicular\geom3d,are_perpendicular\Test if lines or planes are perpendicular
  643.         are_tangent\geom3d,are_tangent\Test if a line, plane, or sphere and a sphere are tangent
  644.         center\geom3d,center\Find the center of a given sphere
  645.         centroid\geom3d,centroid\Compute the centroid tetrahedron, triangle, or point list
  646.         coordinates\geom3d,coordinates\Return the coordinates of a given point
  647.         coplanar\geom3d,coplanar\Test if four points or two lines are coplanar
  648.         distance\geom3d,distance\Distance between two points, two lines, or a point and a line
  649.         inter\geom3d,inter\Find the intersections between two lines or planes
  650.         midpoint\geom3d,midpoint\Find the midpoint of the segment joining 2 points
  651.         onsegment\geom3d,onsegment\Find the point which divides a segment in a given ratio
  652.         on_plane\geom3d,on_plane\Test if a point or a list or set of points are on a plane
  653.         on_sphere\geom3d,on_sphere\Test if a point or a list or set of points are on a sphere
  654.         parallel\geom3d,parallel\Find a parallel plane or line going through a given point
  655.         perpendicular\geom3d,perpendicular\Find perpendicular plane or line going through a point
  656.         powerps\geom3d,powerps\Power of a given point with respect to a given sphere
  657.         projection\geom3d,projection\Find projection of a given point or line on a line or plane
  658.         radius\geom3d,radius\Compute the radius of a given sphere
  659.         rad_plane\geom3d,rad_plane\Find the radical plane  of two given sphere
  660.         reflect\geom3d,reflect\Find reflection of a given point or line in a line or plane
  661.         sphere\geom3d,sphere\Define a sphere
  662.         symmetric\geom3d,symmetric\Find the symmetric point of a point with respect to a point
  663.         tangent\geom3d,tangent\Find the tangent plane of a point on a given sphere
  664.         tetrahedron\geom3d,tetrahedron\Define a tetrahedron
  665.         triangle3d\geom3d,triangle3d\Define the triangles in three-dimensional space
  666.         volume\geom3d,volume\Compute the volume of a tetrahedron or a sphere
  667.     geometry\geometry\Introduction to the "geometry" package
  668.         altitude\geometry,altitude\Find the altitude of a given triangle
  669.         Appolonius\geometry,Appolonius\Find the Appolonius circles of three given circles.
  670.         area\geometry,area\Compute the area of a triangle, square, or circle
  671.         are_collinear\geometry,are_collinear\Test if three points are collinear
  672.         are_concurrent\geometry,are_concurrent\Test if three lines are concurrent
  673.         are_harmonic\geometry,are_harmonic\Test if pair of points is harmonic conjugate to another
  674.         are_orthogonal\geometry,are_orthogonal\Test if two circles are orthogonal to each other
  675.         are_parallel\geometry,are_parallel\Test if two lines are parallel to each other
  676.         are_perpendicular\geometry,are_perpendicular\Test if two lines are perpendicular to each other
  677.         are_similar\geometry,are_similar\Test if two triangles are similar
  678.         are_tangent\geometry,are_tangent\Test if a line and a circle or two circles are tangent
  679.         bisector\geometry,bisector\Find the bisector of a given triangle
  680.         center\geometry,center\Find the center of a given circle
  681.         centroid\geometry,centroid\Centroid of a triangle, set, or list of points on a plane
  682.         circumcircle\geometry,circumcircle\Find the circumcircle of a given triangle
  683.         conic\geometry,conic\Find the conic going through five points
  684.         convexhull\geometry,convexhull\Find convex hull enclosing the given points
  685.         coordinates\geometry,coordinates\Compute the coordinates of a given point
  686.         detailf\geometry,detailf\Floating-point information about points, circles, and lines.
  687.         diameter\geometry,diameter\Compute the diameter of a given set or list of points
  688.         distance\geometry,distance\Find the distance between two points or a point and a line
  689.         ellipse\geometry,ellipse\Define the ellipse
  690.         Eulercircle\geometry,Eulercircle\Find the Euler circle of a given triangle
  691.         Eulerline\geometry,Eulerline\Find the Euler line of a given triangle
  692.         excircle\geometry,excircle\Find three excircles of a given triangle
  693.         find_angle\geometry,find_angle\Find the angle between two lines or two circles
  694.         Gergonnepoint\geometry,Gergonnepoint\Find the Gergonne point of a given triangle
  695.         harmonic\geometry,harmonic\Find a point which is harmonic conjugate to two others
  696.         incircle\geometry,incircle\Find the incircle of a given triangle
  697.         inter\geometry,inter\Find the intersections between two lines and/or circles
  698.         inversion\geometry,inversion\Inversion of a point, line, or circle wrt a given circle
  699.         is_equilateral\geometry,is_equilateral\Test if a given triangle is equilateral
  700.         is_right\geometry,is_right\Test if a given triangle is a right triangle
  701.         make_square\geometry,make_square\Construct squares
  702.         median\geometry,median\Find the median of a given triangle
  703.         midpoint\geometry,midpoint\Find the midpoint of the segment joining two points
  704.         Nagelpoint\geometry,Nagelpoint\Find the Nagel point of a given triangle
  705.         onsegment\geometry,onsegment\Find the point which divides a segment in a given ratio
  706.         on_circle\geometry,on_circle\Test if a point, a list or set of points lies on a circle
  707.         on_line\geometry,on_line\Test if a point, a list or a set of points lies on a line
  708.         orthocenter\geometry,orthocenter\Compute orthocenter of a triangle, set, or point list
  709.         parallel\geometry,parallel\Find line through a point parallel to another line
  710.         perpendicular\geometry,perpendicular\Find line through point perpendicular to another line
  711.         perpen_bisector\geometry,perpen_bisector\Find perpendicular bisector of a line
  712.         polar_point\geometry,polar_point\Polar-line of a point with respect to a circle or conic
  713.         pole_line\geometry,pole_line\Pole of a given line with respect to a circle or conic
  714.         powerpc\geometry,powerpc\Power of a given point with respect to a given circle
  715.         projection\geometry,projection\Find the projection of a given point on a given line
  716.         radius\geometry,radius\Compute the radius of a given circle
  717.         rad_axis\geometry,rad_axis\Find the radical axis of two given circles
  718.         rad_center\geometry,rad_center\Find the radical center of three given circles
  719.         randpoint\geometry,randpoint\Find a random point on a line or a circle
  720.         reflect\geometry,reflect\Find the reflection of a given point with respect to a line
  721.         rotate\geometry,rotate\Find point of rotation of a point with respect to a point
  722.         sides\geometry,sides\Compute the sides of a given triangle or a given square
  723.         similitude\geometry,similitude\Find the insimilitude and outsimilitude of two circles
  724.         Simsonline\geometry,Simsonline\Find the Simson line of a given triangle with respect...
  725.         square\geometry,square\Define the squares
  726.         symmetric\geometry,symmetric\Find the symmetric point of a point with respect a point
  727.         tangent\geometry,tangent\Find the tangents of a point with respect to a circle
  728.         tangentpc\geometry,tangentpc\Find the tangent of a point on a circle
  729.     grobner\grobner\Introduction to the "grobner" package
  730.         finduni\grobner,finduni\Find smallest univariate polynomial in ideal generated by...
  731.         finite\grobner,finite\Decide if algebraic system has (at most) finitely many sol'ns
  732.         gbasis\grobner,gbasis\Compute reduced, minimal Grobner basis
  733.         gsolve\grobner,gsolve\Prepare the given algebraic system for solving
  734.         leadmon\grobner,leadmon\Compute the leading monomial of a polynomial
  735.         normalf\grobner,normalf\Reduced form of a polynomial modulo an ideal
  736.         solvable\grobner,solvable\Decide if given algebraic system is solvable
  737.         spoly\grobner,spoly\Compute the S polynomial of two polynomials
  738.     group\group\Introduction to the "group" package
  739.         centralizer\group,centralizer\Find the centralizer of a set of permutations
  740.         cosets\group,cosets\Find a complete list of right coset representatives
  741.         cosrep\group,cosrep\Element as product of subgroup element and right coset rep
  742.         groupmember\group,groupmember\Test if a permutation is in a given group
  743.         grouporder\group,grouporder\Compute the order of a group
  744.         inter\group,inter\Find the intersection of two permutation groups
  745.         invperm\group,invperm\Find inverse of a permutation
  746.         isnormal\group,isnormal\Determine whether a subgroup is normal
  747.         mulperms\group,mulperms\Multiply two permutations in disjoint cycle notation
  748.         normalizer\group,normalizer\Find the normalizer of a subgroup
  749.         permrep\group,permrep\Find a permutation representation of a group
  750.         pres\group,pres\Find a presentation for a subgroup of a group
  751.     liesymm\liesymm\Introduction to the "liesymm" package
  752.         &mod\liesymm,&mod\Reduce a form modulo an exterior ideal
  753.         &^\liesymm,&^\Wedge product of differential forms
  754.         annul\liesymm,annul\Annul a set of differential forms
  755.         close\liesymm,close\Compute the closure of a set of differential forms
  756.         d\liesymm,d\The exterior derivative
  757.         determine\liesymm,determine\Find the determining equations for the isovectors of a pde
  758.         getcoeff\liesymm,getcoeff\Extract the coefficient part of a basis wedge product
  759.         getform\liesymm,getform\Extracts the basis element of a single wedge product
  760.         hasclosure\liesymm,hasclosure\Verify closure with respect to d()
  761.         hook\liesymm,hook\Inner product (hook)
  762.         Lie\liesymm,Lie\The Lie derivative
  763.         Lrank\liesymm,Lrank\The Lie Rank of a set of forms
  764.         makeforms\liesymm,makeforms\Construct a set of differential forms from a pde
  765.         mixpar\liesymm,mixpar\Order the mixed partials
  766.         setup\liesymm,setup\Define the coordinates
  767.         value\liesymm,value\Force evaluation of derivatives
  768.         wcollect\liesymm,wcollect\Regroup the terms as a sum of products
  769.         wdegree\liesymm,wdegree\Compute the wedge degree of a form
  770.         wedgeset\liesymm,wedgeset\Find the coordinate set
  771.         wsubs\liesymm,wsubs\Replace part of a wedge product
  772.     linalg\linalg\Introduction to the "linalg" package
  773.         add\linalg,add\Matrix or vector addition
  774.         addcol\linalg,addcol\Form linear combinations of matrix columns
  775.         addrow\linalg,addrow\Form linear combinations of matrix rows
  776.         adj\linalg,adj\Compute the adjoint of a matrix
  777.         adjoint\linalg,adjoint\Compute the adjoint of a matrix
  778.         angle\linalg,angle\Compute the angle between vectors
  779.         augment\linalg,augment\Join two or more matrices together horizontally
  780.         backsub\linalg,backsub\Back substitution on a matrix
  781.         band\linalg,band\Create a band matrix
  782.         basis\linalg,basis\Find a basis for a vector space
  783.         bezout\linalg,bezout\Create the Bezout matrix of two polynomials
  784.         BlockDiagonal\linalg,BlockDiagonal\Create a block diagonal matrix
  785.         charmat\linalg,charmat\Construct the characteristic matrix
  786.         charpoly\linalg,charpoly\Compute the characteristic polynomial of a matrix
  787.         col\linalg,col\Extract column(s) of a matrix as vectors(s)
  788.         coldim\linalg,coldim\Determine the column dimension of a matrix
  789.         colspace\linalg,colspace\Compute a basis for the column space
  790.         colspan\linalg,colspan\Compute spanning vectors for the column space
  791.         companion\linalg,companion\Return a companion matrix associated with a polynomial
  792.         concat\linalg,concat\Join two or more matrices together horizontally
  793.         cond\linalg,cond\Condition number of a matrix
  794.         copyinto\linalg,copyinto\Move entries from one matrix into another
  795.         crossprod\linalg,crossprod\Vector cross product
  796.         curl\linalg,curl\Curl of a vector
  797.         definite\linalg,definite\Test for positive (negative) definite matrices
  798.         delcols\linalg,delcols\Delete columns of a matrix
  799.         delrows\linalg,delrows\Delete rows of a matrix
  800.         det\linalg,det\Determinant of a matrix
  801.         diag\linalg,diag\Create a block diagonal matrix
  802.         diverge\linalg,diverge\Compute the divergence of a vector function
  803.         dotprod\linalg,dotprod\Vector dot (scalar) product
  804.         eigenvals\linalg,eigenvals\Compute the eigenvalues of a matrix
  805.         eigenvects\linalg,eigenvects\Find the eigenvectors of a matrix
  806.         equal\linalg,equal\Determine whether two matrices are equal
  807.         exponential\linalg,exponential\Matrix exponential
  808.         extend\linalg,extend\Enlarge a matrix
  809.         ffgausselim\linalg,ffgausselim\Fraction-free Gaussian elimination on a matrix
  810.         fibonacci\linalg,fibonacci\Fibonacci matrix
  811.         frobenius\linalg,frobenius\Compute the Frobenius form of a matrix
  812.         gausselim\linalg,gausselim\Gaussian elimination on a matrix
  813.         gaussjord\linalg,gaussjord\Reduced row Echelon form (Gauss-Jordan elimination)
  814.         genmatrix\linalg,genmatrix\Generate the coefficient matrix from equations
  815.         grad\linalg,grad\Vector gradient of an expression
  816.         GramSchmidt\linalg,GramSchmidt\Compute orthogonal vectors
  817.         hadamard\linalg,hadamard\Bound on coefficients of the determinant of a matrix
  818.         hermite\linalg,hermite\Hermite normal form (reduced row echelon form)
  819.         hessian\linalg,hessian\Compute the Hessian matrix of an expression
  820.         hilbert\linalg,hilbert\Create a Hilbert matrix
  821.         htranspose\linalg,htranspose\Compute the Hermitian transpose of a matrix
  822.         ihermite\linalg,ihermite\Integer-only Hermite normal form
  823.         indexfunc\linalg,indexfunc\Determine the indexing function of an array
  824.         innerprod\linalg,innerprod\Calculate the inner product
  825.         intbasis\linalg,intbasis\Determine a basis for the intersection of spaces
  826.         inverse\linalg,inverse\Compute the inverse of a matrix
  827.         ismith\linalg,ismith\Integer-only Smith normal form
  828.         iszero\linalg,iszero\Determine whether a matrix is zero
  829.         jacobian\linalg,jacobian\Compute the Jacobian matrix of a vector function
  830.         jordan\linalg,jordan\Compute the Jordan form of a matrix
  831.         JordanBlock\linalg,JordanBlock\Return a Jordan block matrix
  832.         kernel\linalg,kernel\Compute a basis for the null space
  833.         laplacian\linalg,laplacian\Compute the Laplacian
  834.         leastsqrs\linalg,leastsqrs\Least-squares solution of equations
  835.         linsolve\linalg,linsolve\Solution of linear equations
  836.         matrix\linalg,matrix\Create a matrix
  837.         minor\linalg,minor\Compute a minor of a matrix
  838.         minpoly\linalg,minpoly\Compute the minimum polynomial of a matrix
  839.         mulcol\linalg,mulcol\Multiply a column of a matrix by an expression
  840.         mulrow\linalg,mulrow\Multiply a row of a matrix by an expression
  841.         multiply\linalg,multiply\Matrix-matrix or matrix-vector multiplication
  842.         norm\linalg,norm\Norm of a matrix or vector
  843.         nullspace\linalg,nullspace\Compute a basis for the null space
  844.         orthog\linalg,orthog\Test for orthogonal matrices
  845.         permanent\linalg,permanent\Compute the permanent of a matrix
  846.         pivot\linalg,pivot\Pivot about a matrix entry
  847.         potential\linalg,potential\Compute the potential of a vector field
  848.         randmatrix\linalg,randmatrix\Random matrix generator
  849.         range\linalg,range\Compute a basis for the column space
  850.         rank\linalg,rank\Rank of a matrix
  851.         row\linalg,row\Extract row(s) of a matrix as vector(s)
  852.         rowdim\linalg,rowdim\Determine the row dimension of a matrix
  853.         rowspace\linalg,rowspace\Compute a basis for the row space
  854.         rowspan\linalg,rowspan\Compute spanning vectors for the row space
  855.         rref\linalg,rref\Reduced row Echelon form
  856.         scalarmul\linalg,scalarmul\Multiply a matrix or vector by an expression
  857.         singularvals\linalg,singularvals\Compute the singular values of a matrix
  858.         smith\linalg,smith\Compute the Smith normal form of a matrix
  859.         stack\linalg,stack\Join two or more matrices together vertically
  860.         submatrix\linalg,submatrix\Extract a specified submatrix from a matrix
  861.         subvector\linalg,subvector\Extract a specified vector from a matrix
  862.         sumbasis\linalg,sumbasis\Determine a basis for the sum of vector spaces
  863.         swapcol\linalg,swapcol\Swap two columns in a matrix
  864.         swaprow\linalg,swaprow\Swap two rows in a matrix
  865.         sylvester\linalg,sylvester\Create Sylvester matrix from two polynomials
  866.         toeplitz\linalg,toeplitz\Create a Toeplitz matrix
  867.         trace\linalg,trace\The trace of a matrix
  868.         transpose\linalg,transpose\Compute the transpose of a matrix
  869.         vandermonde\linalg,vandermonde\Create a Vandermonde matrix
  870.         vecpotent\linalg,vecpotent\Compute the vector potential
  871.         vectdim\linalg,vectdim\Determine the dimension of a vector
  872.         vector\linalg,vector\Create a vector
  873.     logic\logic\Introduction to the "logic" package
  874.         bequal\logic,bequal\Logical equivalence of two expressions
  875.         bsimp\logic,bsimp\Boolean expression simplification
  876.         canon\logic,canon\Canonical representation of expression
  877.         convert/frominert\logic,frominert\Replace inert operators by system operators
  878.         convert/MOD2\logic,MOD2\Convert boolean expression to equivalent modulo 2 format
  879.         convert/toinert\logic,toinert\Convert system defined operators to inert ones
  880.         distrib\logic,distrib\Expand a boolean expression
  881.         dual\logic,dual\Construct the dual of a boolean expression
  882.         environ\logic,environ\Set level of automatic logical simplification
  883.         randbool\logic,randbool\Construct a random boolean function
  884.         satisfy\logic,satisfy\Return a valuation satisfying an expression
  885.         tautology\logic,tautology\Test for tautology
  886.     np\np\Introduction to the "np" package
  887.         conj\np,conj\Newman-Penrose complex conjugation operator
  888.         D\np,D\Newman-Penrose Pfaffian operators
  889.         eqns\np,eqns\Initialization and display of NP equations
  890.         suball\np,suball\Substitution utility for Newman-Penrose package
  891.         V\np,V\Newman-Penrose Pfaffian operators
  892.         V_D\np,V_D\Newman-Penrose commutators
  893.         X\np,X\Newman-Penrose Pfaffian operators
  894.         X_D\np,X_D\Newman-Penrose commutators
  895.         X_V\np,X_V\Newman-Penrose commutators
  896.         Y\np,Y\Newman-Penrose Pfaffian operators
  897.         Y_D\np,Y_D\Newman-Penrose commutators
  898.         Y_V\np,Y_V\Newman-Penrose commutators
  899.         Y_X\np,Y_X\Newman-Penrose commutators
  900.     numtheory\numtheory\Introduction to the "numtheory" package
  901.         B\numtheory,B\N'th Bernoulli number
  902.         bernoulli\numtheory,bernoulli\Bernoulli numbers and polynomials
  903.         cfrac\numtheory,cfrac\Continued fraction convergents
  904.         cyclotomic\numtheory,cyclotomic\Calculate cyclotomic polynomial
  905.         divisors\numtheory,divisors\Positive divisors of an integer
  906.         E\numtheory,E\N'th Euler number
  907.         euler\numtheory,euler\Euler numbers and polynomials
  908.         F\numtheory,F\N'th Fermat number
  909.         factorset\numtheory,factorset\Prime factors of an integer
  910.         fermat\numtheory,fermat\N'th Fermat number
  911.         GIgcd\numtheory,GIgcd\Gcd of Gaussian integers
  912.         ifactor\numtheory,ifactor\Integer factorization
  913.         imagunit\numtheory,imagunit\Square root of -1 mod n
  914.         isolve\numtheory,isolve\Solve equations for integer solutions
  915.         isprime\numtheory,isprime\Primality test
  916.         issqrfree\numtheory,issqrfree\Test if integer is square free
  917.         ithprime\numtheory,ithprime\Determine the i'th prime
  918.         J\numtheory,J\Jacobi symbol
  919.         jacobi\numtheory,jacobi\Jacobi symbol
  920.         L\numtheory,L\Legendre symbol
  921.         lambda\numtheory,lambda\Carmichael's lambda function
  922.         legendre\numtheory,legendre\Legendre symbol
  923.         M\numtheory,M\N'th Mersenne prime
  924.         mcombine\numtheory,mcombine\Chinese remaindering
  925.         mersenne\numtheory,mersenne\N'th Mersenne prime
  926.         mipolys\numtheory,mipolys\Number of monic irreducible univariate polynomials
  927.         mlog\numtheory,mlog\Discrete logarithm
  928.         mobius\numtheory,mobius\Mobius function
  929.         mroot\numtheory,mroot\Modular root
  930.         msqrt\numtheory,msqrt\Modular square root
  931.         nextprime\numtheory,nextprime\Determine the next largest prime
  932.         nthpow\numtheory,nthpow\Find largest nth power in a number
  933.         order\numtheory,order\Order of a number
  934.         phi\numtheory,phi\Totient function
  935.         pprimroot\numtheory,pprimroot\Compute a pseudo primitive root
  936.         prevprime\numtheory,prevprime\Determine the next smallest prime
  937.         primroot\numtheory,primroot\Compute a primitive root
  938.         rootsunity\numtheory,rootsunity\Roots of unity
  939.         safeprime\numtheory,safeprime\Compute a safe prime
  940.         sigma\numtheory,sigma\Sum of divisors
  941.         tau\numtheory,tau\Number of divisors
  942.     orthopoly\orthopoly\Introduction to the "orthopoly" package
  943.         G\orthopoly,G\Gegenbauer (ultraspherical) polynomial
  944.         H\orthopoly,H\Hermite polynomial
  945.         L\orthopoly,L\Laguerre polynomial
  946.         P\orthopoly,P\Legendre and Jacobi polynomials
  947.         T\orthopoly,T\Chebyshev polynomial (of the first kind)
  948.         U\orthopoly,U\Chebyshev polynomial of the second kind
  949.     plots\plots\Introduction to the "plots" package
  950.         conformal\plots,conformal\Conformal plot of a complex function
  951.         cylinderplot\plots,cylinderplot\Plot a 3D surface in cylindrical coordinates
  952.         display\plots,display\Display a set of 2D plot structures
  953.         display3d\plots,display3d\Display a set of 3D plot structures
  954.         matrixplot\plots,matrixplot\3D plot with z values determined by a matrix
  955.         pointplot\plots,pointplot\Create a 3D point plot
  956.         polarplot\plots,polarplot\Plot a 2D curve in polar coordinates
  957.         replot\plots,replot\Redo a plot
  958.         spacecurve\plots,spacecurve\Plotting of 3D space curves
  959.         sparsematrixplot\plots,sparsematrixplot\2D plot of nonzero values of a matrix
  960.         sphereplot\plots,sphereplot\Plot a 3D surface in spherical coordinates
  961.         tubeplot\plots,tubeplot\Three-dimensional tube plotting
  962.     powseries\powseries\Introduction to the "powseries" package
  963.         add\powseries,add\Addition of formal power series
  964.         compose\powseries,compose\Composition of formal power series
  965.         evalpow\powseries,evalpow\General evaluator for power series expressions
  966.         inverse\powseries,inverse\Multiplicative inverse of a formal power series
  967.         multconst\powseries,multconst\Multiplication of a power series by a constant
  968.         multiply\powseries,multiply\Multiplication of formal power series
  969.         negative\powseries,negative\Negation of a formal power series
  970.         powcreate\powseries,powcreate\Create formal power series
  971.         powdiff\powseries,powdiff\Differentiation of a formal power series
  972.         powexp\powseries,powexp\Exponentiation of a formal power series
  973.         powint\powseries,powint\Integration of a formal power series
  974.         powlog\powseries,powlog\Logarithm of a formal power series
  975.         powpoly\powseries,powpoly\Create a formal power series from a polynomial
  976.         powsolve\powseries,powsolve\Solve linear differential equations as power series
  977.         quotient\powseries,quotient\Quotient of two formal power series
  978.         reversion\powseries,reversion\Reversion of formal power series
  979.         subtract\powseries,subtract\Subtraction of two formal power series
  980.         tpsform\powseries,tpsform\Truncated power series form of a formal series
  981.     projgeom\projgeom\Introduction to the "projgeom" package
  982.         collinear\projgeom,collinear\Test whether three given points are collinear
  983.         concur\projgeom,concur\Test whether three given lines are concurrent
  984.         conjugate\projgeom,conjugate\Check whether two given points are conjugate wrt a conic
  985.         ctangent\projgeom,ctangent\Tangent lines to a conic from any point in a complex plane
  986.         fpconic\projgeom,fpconic\Coefficients of equation of conic going through five points
  987.         harmonic\projgeom,harmonic\Point which is harmonic conjugate to another wrt 2 others
  988.         inter\projgeom,inter\Find the intersection of two given lines
  989.         join\projgeom,join\Find the line joining two given points
  990.         lccutc\projgeom,lccutc\The intersection of a conic and a line in a complex plane
  991.         lccutr\projgeom,lccutr\The intersection of a conic and a line in a real plane
  992.         lccutr2p\projgeom,lccutr2p\Intersection of conic and a line joining two points
  993.         linemeet\projgeom,linemeet\Find a line which is concurrent to two given lines
  994.         midpoint\projgeom,midpoint\Find the midpoint of the line joining two points
  995.         onsegment\projgeom,onsegment\Find the point which divides a segment in a given ratio
  996.         polarp\projgeom,polarp\The polar line of a given point with respect to a conic
  997.         poleline\projgeom,poleline\The pole of a given line with respect to a conic
  998.         ptangent\projgeom,ptangent\Find the tangent line to the conic at a point on it
  999.         rtangent\projgeom,rtangent\Tangent lines to a conic from any point in real ext'd plane
  1000.         tangentte\projgeom,tangentte\Check if a given line touches a given conic
  1001.         tharmonic\projgeom,tharmonic\Test if pair of points is harmonic conjugate to another
  1002.     simplex\simplex\Introduction to the "simplex" package
  1003.         basis\simplex,basis\Computes a list of variables, corresponds to the basis
  1004.         convexhull\simplex,convexhull\Find convex hull enclosing the given points
  1005.         cterm\simplex,cterm\Computes the list of constants from the system
  1006.         dual\simplex,dual\Computes the dual of a linear program
  1007.         feasible\simplex,feasible\Determine if system is feasible or not
  1008.         maximize\simplex,maximize\Maximize a linear program
  1009.         minimize\simplex,minimize\Minimize a linear program
  1010.         pivot\simplex,pivot\Construct a new set of equations given a pivot
  1011.         pivoteqn\simplex,pivoteqn\Returns a sublist of equations given a pivot
  1012.         pivotvar\simplex,pivotvar\Returns a variable with positive coefficient
  1013.         ratio\simplex,ratio\Returns a list of ratios
  1014.         setup\simplex,setup\Constructs a set of equations with variables on the lhs
  1015.         standardize\simplex,standardize\Converts a set of equations to type "<="
  1016.     stats\stats\Introduction to the "stats" package
  1017.         addrecord\stats,addrecord\Add records to a statistical matrix
  1018.         average\stats,average\Calculate the average of some numbers
  1019.         ChiSquare\stats,ChiSquare\Evaluate the Chi squared function
  1020.         correlation\stats,correlation\Evaluate the correlation coefficient
  1021.         covariance\stats,covariance\Calculate the covariance
  1022.         evalstat\stats,evalstat\Manipulation of statistical data
  1023.         Exponential\stats,Exponential\The exponential distribution
  1024.         Fdist\stats,Fdist\Variance Ratio Distribution
  1025.         Ftest\stats,Ftest\Test Prob(F > x)
  1026.         getkey\stats,getkey\Returns the key from a statistical matrix
  1027.         linregress\stats,linregress\Linear regression
  1028.         median\stats,median\The median of the given data
  1029.         mode\stats,mode\The mode of the given data
  1030.         multregress\stats,multregress\Multiple regression
  1031.         N\stats,N\Values for a Normal Distribution
  1032.         projection\stats,projection\Create a projection matrix
  1033.         putkey\stats,putkey\Add a key to a matrix
  1034.         Q\stats,Q\Tail of a N(0,1) distribution
  1035.         RandBeta\stats,RandBeta\Random number generator for the Beta distribution
  1036.         RandChiSquare\stats,RandChiSquare\Random number generator Chi Square distribution
  1037.         RandExponential\stats,RandExponential\Random number generator for exponential distribution
  1038.         RandFdist\stats,RandFdist\Random number generator F distribution
  1039.         RandGamma\stats,RandGamma\Random number generator for the Gamma distribution
  1040.         RandNormal\stats,RandNormal\Random number generator for normal distribution
  1041.         RandPoisson\stats,RandPoisson\Random number generator Poisson distribution
  1042.         RandStudentsT\stats,RandStudentsT\Random number generator Student T distribution
  1043.         RandUniform\stats,RandUniform\Uniform random number generator
  1044.         regression\stats,regression\Generalized regression routine
  1045.         removekey\stats,removekey\Take the key away from a statistical matrix
  1046.         Rsquared\stats,Rsquared\Square of the correlation coefficient
  1047.         sdev\stats,sdev\Standard deviation
  1048.         serr\stats,serr\Standard error
  1049.         statplot\stats,statplot\Statistical plotting
  1050.         StudentsT\stats,StudentsT\The Student's T distribution
  1051.         Uniform\stats,Uniform\The Uniform distribution
  1052.         variance\stats,variance\Compute the variance of a set of data
  1053.     student\student\Introduction to the "student" package
  1054.         changevar\student,changevar\Perform a change of variables
  1055.         combine\student,combine\Combine terms into a single term
  1056.         completesquare\student,completesquare\Complete the square
  1057.         D\student,D\Differential operator
  1058.         distance\student,distance\Compute the distance between Points
  1059.         Int\student,Int\Inert form of int (integration function)
  1060.         intercept\student,intercept\Compute the points of intersection of two curves
  1061.         intparts\student,intparts\Perform integration by parts
  1062.         isolate\student,isolate\Isolate a subexpression to left-side of an equation
  1063.         leftbox\student,leftbox\Graph an approximation to an integral
  1064.         leftsum\student,leftsum\Numerical approximation to an integral
  1065.         Limit\student,Limit\Inert form of limit
  1066.         makeproc\student,makeproc\Convert an expression into a Maple procedure
  1067.         maximize\student,maximize\Compute the maximum
  1068.         middlesum\student,middlesum\Numerical approximation to an integral
  1069.         midpoint\student,midpoint\Compute the midpoint of a line segment
  1070.         minimize\student,minimize\Compute the minimum
  1071.         powsubs\student,powsubs\Substitute for factors of an expression
  1072.         rightbox\student,rightbox\Graph an approximation to an integral
  1073.         rightsum\student,rightsum\Numerical approximation to an integral
  1074.         showtangent\student,showtangent\Plot a function and its tangent line
  1075.         simpson\student,simpson\Numerical approximation to an integral
  1076.         slope\student,slope\Compute the slope of a line
  1077.         Sum\student,Sum\Inert form of sum
  1078.         trapezoid\student,trapezoid\Numerical approximation to an integral
  1079.         value\student,value\Evaluate inert functions (formerly student,Eval)
  1080.     totorder\totorder\Introduction to the "totorder" package
  1081.         assume\totorder,assume\Define total ordering on a sequence of names
  1082.         forget\totorder,forget\Deletes relationships within the ordering of names
  1083.         is\totorder,is\Make queries with respect to the ordering of names
  1084.         ordering\totorder,ordering\Print out the current total ordering of names
  1085.